home *** CD-ROM | disk | FTP | other *** search
/ SGI Hot Mix 17 / Hot Mix 17.iso / HM17_SGI / research / lib / obsolete / helpfiles.pro < prev    next >
Text File  |  1997-07-08  |  702b  |  35 lines

  1. ; $Id: helpfiles.pro,v 1.2 1997/01/15 04:02:19 ali Exp $
  2. ;
  3. ; Copyright (c) 1990-1997, Research Systems, Inc.  All rights reserved.
  4. ;       Unauthorized reproduction prohibited.
  5.  
  6. pro HELPFILES
  7. ;+
  8. ; NAME:
  9. ;    HELPFILES
  10. ;
  11. ; PURPOSE:
  12. ;    HELPFILES prints useful information about the currently open
  13. ;    files.  This procedure was built-in under version 1 VMS
  14. ;    IDL, and is provided in this form to help users of that version
  15. ;    adapt to version 2.
  16. ;
  17. ; CALLING SEQUENCE:
  18. ;    HELPFILES
  19. ;
  20. ; INPUT:
  21. ;    None.
  22. ;
  23. ; OUTPUT:
  24. ;    Information about open files is printed.
  25. ;
  26. ; RESTRICTIONS:
  27. ;    None.
  28. ;
  29. ; REVISION HISTORY:
  30. ;    10 January 1990
  31. ;-
  32. on_error,2                        ;Return to caller if an error occurs
  33. HELP, /FILES
  34. end
  35.